home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-03-20 | 1.3 KB | 43 lines | [TEXT/MPS ] |
- ; ------------------------------------------------------------------------------
- ;
- ; FILENAME
- ; OldAPIMsgJumpTable.a
- ;
- ; DESCRIPTION
- ; This file contains the entry points for the old API messages which the
- ; ImageWriter LQ driver overrides. Note that the top of the jump table
- ; must contain a single long word, which is used by the Printing Manager
- ; to manage code segmentation at runtime. This long word should default
- ; to zero.
- ;
- ; COPYRIGHT
- ; Copyright Apple Computer, Inc. 1992-1994
- ; All rights reserved.
- ;
- ; 12/20/93 - dmh - Sync'd with the shipping 1.0b3 GX driver.
- ; 8/28/94 - dmh - Sync'd with the shipping 1.0.1 GX driver.
- ;
- ;--------------------------------------------------------------------------------
-
- SD_OldAPIMsgJumpTable PROC EXPORT
-
- ; This long word is used for managing code segments
- EXPORT segReferenceCount
- segReferenceCount dc.l 0
-
- ; Following are the old API message jump table entry points
-
- IMPORT SD_PrValidate
- JMP SD_PrValidate
-
- IMPORT SD_ConvertPrintRecordTo
- JMP SD_ConvertPrintRecordTo
-
- IMPORT SD_ConvertPrintRecordFrom
- JMP SD_ConvertPrintRecordFrom
-
- IMPORT SD_PrintRecordToJob
- JMP SD_PrintRecordToJob
-
- END
-